Presentations using Jupyter Notebooks

You can create slide presentation using Jupyter.

Normal slide

Any slide can contain code, markdown or plots


In [1]:
rnorm(10)


Out[1]:
  1. -0.602762506978659
  2. 0.605207964286346
  3. 1.10398730504903
  4. 0.851865553345333
  5. -0.00123545798215024
  6. 0.7029341497944
  7. 1.86692030436946
  8. 0.616654273452816
  9. -1.04814088416514
  10. 0.826297898675704

In [2]:
# These are my notes

Overview mode

Section

To create a new section, use Slide type "Slide"

To navigate to the sub-slide, press [Page down]

Sub-slide

To create slides in a section, use slide type "Sub-Slide"


In [3]:
options(repr.plot.width=4, repr.plot.height=3)
plot(1:10)


Navigation using keyboard shortcuts


In [ ]: